Does apt-cacher Change Packages `Access Time`?
Posted
by
tAmir Naghizadeh
on Ask Ubuntu
See other posts from Ask Ubuntu
or by tAmir Naghizadeh
Published on 2012-11-26T12:36:12Z
Indexed on
2012/11/28
11:17 UTC
Read the original article
Hit count: 310
I tried to remove the long time unused packages from apt-cacher
archive using find
:
1.
$find /var/cache/apt-cacher -atime +5 -type f -name ".*deb*" | wc -l
8471
2.
$find /var/cache/apt-cacher -atime +9 -type f -name ".*deb*" | wc -l
2269
3.
$find /var/cache/apt-cacher -atime +10 -type f -name ".*deb*" | wc -l
0
Can I depend on the Access Time
for apt-cacher archive usage? That is, does Access Time
change only when package get received by the user?
(we are apt-cacher for more than 6 months).
© Ask Ubuntu or respective owner